
[dbo].[Content_Security_Group]
CREATE TABLE [dbo].[Content_Security_Group]
(
[ContentID] [numeric] (18, 0) NOT NULL,
[SecurityGroupCode] [varchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Content_Security_Group] ADD CONSTRAINT [PK_Content_Security_Group] PRIMARY KEY CLUSTERED ([ContentID], [SecurityGroupCode]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[Content_Security_Group] ADD CONSTRAINT [FK_Content_Security_Group_Content] FOREIGN KEY ([ContentID]) REFERENCES [dbo].[Content] ([ContentID])
GO
GRANT REFERENCES ON [dbo].[Content_Security_Group] TO [IMIS]
GRANT SELECT ON [dbo].[Content_Security_Group] TO [IMIS]
GRANT INSERT ON [dbo].[Content_Security_Group] TO [IMIS]
GRANT DELETE ON [dbo].[Content_Security_Group] TO [IMIS]
GRANT UPDATE ON [dbo].[Content_Security_Group] TO [IMIS]
GO